home *** CD-ROM | disk | FTP | other *** search
Text File | 1990-09-01 | 640 b | 27 lines | [TEXT/PJMM] |
- {This stuff is copied from TCL.p so that I don't have to build an 80K project for this little demo}
- {You'll need to use TCL.p in your real project}
- {The interface for object CThermometer is in the unit with it's methods}
- unit MiniIntf;
- interface
- uses
- Script;
-
-
- {****************************************************}
- { CObject}
- {}
- { Interface for the Object Class }
- {}
- {****************************************************}
- type
-
- CObject = object
-
- function Clone: CObject; { Make a copy of an object }
- procedure Free; { Dispose of an object }
- end;
- RectPtr = ^Rect;
- RectHandle = ^RectPtr;
-
- implementation
- end.